Platform Explorer / Nuxeo Platform LTS 2017 9.10

Component org.nuxeo.nuxeo.ecm.platform.audio.doctype

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.nuxeo.ecm.platform.audio.doctype">

  <require>org.nuxeo.ecm.core.CoreExtensions</require>
  <require>org.nuxeo.ecm.tags.schemas</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
    <schema name="audio" src="schema/audio.xsd" prefix="aud" />
  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">
    <facet name="Audio">
      <schema name="file" />
      <schema name="audio" />
    </facet>

    <doctype name="Audio" extends="Document">
      <schema name="common" />
      <schema name="dublincore" />
      <schema name="uid" />
      <facet name="Audio" />
      <facet name="Commentable" />
      <facet name="Versionable" />
      <facet name="Publishable" />
      <facet name="NXTag" />
    </doctype>

    <doctype name="Workspace" append="true">
      <subtypes>
        <type>Audio</type>
      </subtypes>
    </doctype>

    <doctype name="Folder" append="true">
      <subtypes>
        <type>Audio</type>
      </subtypes>
    </doctype>

    <doctype name="OrderedFolder" append="true">
      <subtypes>
        <type>Audio</type>
      </subtypes>
    </doctype>
  </extension>

</component>